home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / Tokenize.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  2KB  |  83 lines

  1. /*
  2.      File:        Tokenize.h
  3.  
  4.      Contains:    Text Services Manager Tokenizer interfaces
  5.  
  6.      Version:    Technology:    System 8.0
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __TOKENIZE__
  19. #define __TOKENIZE__
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24. #ifndef __TEXTOBJECTS__
  25. #include <TextObjects.h>
  26. #endif
  27. #ifndef __TEXTSERVICES__
  28. #include <TextServices.h>
  29. #endif
  30.  
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34.  
  35. #if PRAGMA_IMPORT_SUPPORTED
  36. #pragma import on
  37. #endif
  38.  
  39. #if PRAGMA_ALIGN_SUPPORTED
  40. #pragma options align=mac68k
  41. #endif
  42.  
  43. #if FOR_SYSTEM8_PREEMPTIVE
  44.  
  45. enum {
  46.     kTKNNoControlFlags            = 0,
  47.     kTKNSplitTextStreamFlag        = 1
  48. };
  49.  
  50. /*
  51.  *
  52.  * Tokenize Functions 
  53.  *
  54. */
  55. extern OSStatus TKNSetTextRun(TSMContext context, TextObject run);
  56.  
  57. extern OSStatus TKNGetTextRun(TSMContext context, TextObject run);
  58.  
  59. extern OSStatus TKNGetNextToken(TSMContext context, TextObject token);
  60.  
  61. extern OSStatus TKNGetTokenPosition(TSMContext context, TextObjectIndex *theStart, TextObjectIndex *theEnd);
  62.  
  63. extern OSStatus TKNSetControlFlags(TSMContext context, long controlFlags);
  64.  
  65. extern OSStatus TKNGetControlFlags(TSMContext context, long *controlFlags);
  66.  
  67. #endif
  68.  
  69. #if PRAGMA_ALIGN_SUPPORTED
  70. #pragma options align=reset
  71. #endif
  72.  
  73. #if PRAGMA_IMPORT_SUPPORTED
  74. #pragma import off
  75. #endif
  76.  
  77. #ifdef __cplusplus
  78. }
  79. #endif
  80.  
  81. #endif /* __TOKENIZE__ */
  82.  
  83.